IT Technical Support for Developers

Tally Integration Capabilities


Tally prime is hanging, Not responding, not Opening

Reasons for Tally Prime is not responding

How to solve tally prime problem

Tally Prime is Not Responding Problem क्या हैं और कैसे Solve करे?

This could happen due to various reasons. The first step towards finding the solution for this problem is identifying what is causing Tally to not respond.

Data Size Huge

When the data size is huge Tally may take time to load and thus may fail to respond. The solution to this problem is split your data. Year-wise splitting of data is a good practice as it decreases the data load on the system and thus tally will be able to load all the user requests quickly.

Error while opening Company

TallyPrime now starts in the Command Prompt. Press Ctrl+Alt+R to repair the company data.

Troubleshoot TallyPrime

Press F1 (Help) > Troubleshooting > Repair. Note: If you press Alt+F3 to open a Company and see the status Repair Required against it, then you will need to press Enter on it and follow the procedure of repair. Select the company that you want to repair and press Enter. or Press Ctrl+Alt+R to repair the company data.

Multiple users using Tally at the same time

Tally is single threaded and often cannot process two user requests simultaneously. Thus one has to wait for tally to finish the pending tasks and only then it will be able to process new user requests.

Tally Prime Startup Problem

Tally is not open a long time, and only logo will display, no menu screen
Due to Printer drivers or configuration Tally may hang, troubleshoot all printers which are installed in the computer, and fix if any problem, this will support the tally to open or startup without any delay.
Printer troubleshoot




How to Integrate .NET with Tally Using XML

Tally Interfaces – For Integration .NET Sample Code

How to Export data from tally using .NET using c#?

WebRequest Request = WebRequest.Create(TallyUrl.Text);
string exportxml = null;
int Amt = int.Parse(VCHAmount.Text);

exportxml = "<ENVELOPE>" +
"<HEADER>" +
"<TALLYREQUEST>Export Data</TALLYREQUEST>" +
"</HEADER>" +
"<BODY>" +
. . .
. . .
"</BODY>" +
"</ENVELOPE>";
}
Byte[] bytesToWrite = Encoding.ASCII.GetBytes(exportxml);

Request.Method = "POST";
Request.ContentLength = bytesToWrite.Length;
Request.ContentType = "text/xml";

Stream newStream = Request.GetRequestStream();
newStream.Write(bytesToWrite, 0, bytesToWrite.Length);
newStream.Close();

HttpWebResponse response = (HttpWebResponse)Request.GetResponse();
Stream dataStream = response.GetResponseStream();
StreamReader reader = new StreamReader(dataStream);

string responseFromServer = reader.ReadToEnd();
string xmlresponse = responseFromServer;

XmlDocument xd = new XmlDocument();
xd.LoadXml(xmlresponse);


Tags : Tally to .net c# xml data,
Tally xml export/ import using C# .net
How to: Request Data Using the WebRequest Class,
How to make a GET request by using Visual C#,
c# - HTTP request with post,
Create HTTP GET and POST Request with C#,
HttpWebRequest/Response in a Nutshell






Related Links...

Tally Integration Using XML Read / Write


Create Sales Order using xml request to Tally erp 9


How to Enable TCS Calculation on Sale of Goods in Tally ERP 9


How to export voucher from tally by using IDs - XML format


How to Integrate PHP with Tally using XML